home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 1 / Deutsche Edition 1.iso / amok / amok_lha / amok24.lha / DME / SRC / source.zoo / mods.c < prev    next >
C/C++ Source or Header  |  1989-07-03  |  3KB  |  166 lines

  1.  
  2. /*
  3.  *  KTS.C
  4.  *
  5.  *  Additional DME commands written by Kevin T. Seghetti fixed up and
  6.  *  incorporated by Matt Dillon 17 April 1988.
  7.  */
  8.  
  9. #include "defs.h"
  10.  
  11. #define BLOCKDEPTH  5
  12. #define PINGDEPTH   10
  13.  
  14. static long BSstack[BLOCKDEPTH];
  15. static long BEstack[BLOCKDEPTH];
  16. static ED   *Bp[BLOCKDEPTH];
  17. static int  CurrDepth = 0;
  18.  
  19. static long PingLine[PINGDEPTH];
  20. static long PingCol[PINGDEPTH];
  21. static ED   *PingWin[PINGDEPTH];
  22.  
  23. void
  24. PMAdd()
  25. {
  26. }
  27.  
  28. void
  29. PMRem()
  30. {
  31. }
  32.  
  33. void
  34. PMKill(ep)
  35. ED *ep;
  36. {
  37.     register short i, j;
  38.  
  39.     for (i = 0; i < PINGDEPTH; ++i) {       /*  remove ping-pong marks  */
  40.     if (PingWin[i] == ep)
  41.         PingWin[i] = NULL;
  42.     }
  43.     for (i = j = 0; i < CurrDepth; ++i) {   /*  remove block marks      */
  44.     Bp[j] = Bp[i];
  45.     if (Bp[i] != ep)
  46.         ++j;
  47.     }
  48.     CurrDepth = j;
  49. }
  50.  
  51.  
  52. do_pushmark()
  53. {
  54.     text_sync();
  55.     if (blockok()) {
  56.     if (CurrDepth == BLOCKDEPTH) {
  57.         title("pushmark: stack limit reached");
  58.         return(-1);
  59.     }
  60.     BSstack[CurrDepth] = BSline;
  61.     BEstack[CurrDepth] = BEline;
  62.     Bp[CurrDepth] = BEp;
  63.  
  64.     ++CurrDepth;
  65.     text_redrawblock(0);
  66.     }
  67.     return(0);
  68. }
  69.  
  70. void
  71. do_popmark()
  72. {
  73.     text_sync();
  74.  
  75.     if (!CurrDepth) {           /*  no error message on purpose */
  76.     text_redrawblock(0);    /*  remove any existing block   */
  77.     return;
  78.     }
  79.     text_redrawblock(0);
  80.     --CurrDepth;
  81.     BSline = BSstack[CurrDepth];
  82.     BEline = BEstack[CurrDepth];
  83.     BEp = Bp[CurrDepth];
  84.     if (BEp == NULL || BEline >= BEp->Lines) {
  85.     BEp = NULL;
  86.     BSline = BEline = -1;
  87.     } else
  88.     text_redrawblock(1);
  89. }
  90.  
  91. void
  92. do_swapmark()
  93. {
  94.     register short i;
  95.     register long *ptmp;
  96.     register long tmp;
  97.  
  98.     if (do_pushmark() < 0)
  99.     return;
  100.     i = CurrDepth - 2;
  101.     if (i >= 0) {
  102.     ptmp = PingLine + i;
  103.     tmp = ptmp[0]; ptmp[0] = ptmp[1]; ptmp[1] = tmp;
  104.     ptmp = PingCol + i;
  105.     tmp = ptmp[0]; ptmp[0] = ptmp[1]; ptmp[1] = tmp;
  106.     ptmp = (long *)PingWin + i;
  107.     tmp = ptmp[0]; ptmp[0] = ptmp[1]; ptmp[1] = tmp;
  108.     }
  109.     do_popmark();
  110. }
  111.  
  112. do_purgemark()
  113. {
  114.     CurrDepth = 0;
  115. }
  116.  
  117. void
  118. do_ping()
  119. {
  120.     register uword num = atoi(av[1]);
  121.  
  122.     if (num >= PINGDEPTH) {
  123.     title("ping: out of range");
  124.     return;
  125.     }
  126.     PingLine[num]= Ep->Line;
  127.     PingCol[num] = Ep->Column;
  128.     PingWin[num] = Ep;
  129.     title("Line marked");
  130. }
  131.  
  132. void
  133. do_pong()
  134. {
  135.     register uword num = atoi(av[1]);
  136.     extern IBASE *IntuitionBase;
  137.  
  138.     text_sync();
  139.     if (num < 0 || num >= PINGDEPTH || !PingWin[num]) {
  140.     title("pong: range error or nothing marked");
  141.     return;
  142.     }
  143.     text_cursor(1);
  144.     text_switch(PingWin[num]->Win);
  145.     text_cursor(0);
  146.  
  147.     if (IntuitionBase->ActiveWindow != Ep->Win) {
  148.     WindowToFront(Ep->Win);
  149.     ActivateWindow(Ep->Win);
  150.     }
  151.     if ((Ep->Line = PingLine[num]) >= Ep->Lines) {
  152.     PingLine[num] = Ep->Line = Ep->Lines - 1;
  153.     }
  154.     Ep->Column = PingCol[num];
  155.     text_load();
  156.     text_sync();
  157. }
  158.  
  159. void
  160. do_undo()
  161. {
  162.     text_load();
  163.     text_redisplaycurrline();
  164. }
  165.  
  166.